home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / powarc920cz.exe / {app} / POWERARC.EXE / 0 / RCDATA / TSEARCHFORM / TSEARCHFORM.txt
Text File  |  2005-03-06  |  2KB  |  119 lines

  1. object SearchForm: TSearchForm
  2.   Left = 284
  3.   Top = 200
  4.   BorderStyle = bsDialog
  5.   Caption = 'Find Archives'
  6.   ClientHeight = 134
  7.   ClientWidth = 313
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   KeyPreview = True
  11.   OldCreateOrder = True
  12.   Scaled = False
  13.   OnClose = FormClose
  14.   OnCreate = FormCreate
  15.   OnKeyPress = FormKeyPress
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 8
  21.     Top = 4
  22.     Width = 220
  23.     Height = 60
  24.     AutoSize = False
  25.     Caption = 
  26.       'PowerArchiver can automatically find ZIP files on your computer,' +
  27.       ' or you can manually select a file to extract.'
  28.     WordWrap = True
  29.   end
  30.   object Label2: TTntLabel
  31.     Left = 8
  32.     Top = 136
  33.     Width = 289
  34.     Height = 13
  35.     AutoSize = False
  36.     ShowAccelChar = False
  37.   end
  38.   object Label3: TTntLabel
  39.     Left = 7
  40.     Top = 160
  41.     Width = 289
  42.     Height = 13
  43.     AutoSize = False
  44.     ShowAccelChar = False
  45.   end
  46.   object SAll: TRadioButton
  47.     Left = 8
  48.     Top = 64
  49.     Width = 201
  50.     Height = 17
  51.     Caption = '&Search this PC for ZIP files'
  52.     TabOrder = 0
  53.   end
  54.   object SDisk: TRadioButton
  55.     Left = 8
  56.     Top = 88
  57.     Width = 121
  58.     Height = 17
  59.     Caption = 'Search only &drive:'
  60.     TabOrder = 1
  61.     OnClick = SDiskClick
  62.   end
  63.   object SMan: TRadioButton
  64.     Left = 8
  65.     Top = 112
  66.     Width = 201
  67.     Height = 17
  68.     Caption = '&Manually select ZIP file'
  69.     TabOrder = 3
  70.   end
  71.   object ComboBox1: TComboBox
  72.     Left = 136
  73.     Top = 86
  74.     Width = 57
  75.     Height = 21
  76.     Style = csDropDownList
  77.     ItemHeight = 13
  78.     TabOrder = 2
  79.   end
  80.   object Button1: TButton
  81.     Left = 232
  82.     Top = 8
  83.     Width = 75
  84.     Height = 25
  85.     Caption = 'OK'
  86.     Default = True
  87.     TabOrder = 4
  88.     OnClick = Button1Click
  89.   end
  90.   object Button2: TButton
  91.     Left = 232
  92.     Top = 40
  93.     Width = 75
  94.     Height = 25
  95.     Caption = '&Cancel'
  96.     TabOrder = 5
  97.     OnClick = Button2Click
  98.   end
  99.   object Button3: TButton
  100.     Left = 232
  101.     Top = 72
  102.     Width = 75
  103.     Height = 25
  104.     Caption = '&Help'
  105.     TabOrder = 6
  106.     OnClick = Button3Click
  107.   end
  108.   object SelFileBox: TOpenDialog
  109.     Filter = 
  110.       'All archives, Encoded files|*.zip;*.jar;*.pk3;*.rar;*.lha;*.lzh;' +
  111.       '*.arj;*.arc;*.zoo;*.ace;*.cab;*.bh;*.tar;*.gz;*.tgz;*.bz;*.bz2;*' +
  112.       '.tbz;*.enc;*.xxe;*.uue;*.z;*.b64;*.uu;*.mim'
  113.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  114.     Title = 'PowerArchiver - Select Archive'
  115.     Left = 153
  116.     Top = 63
  117.   end
  118. end
  119.